home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / xoops_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  80 lines

  1. # This script was written by Renaud Deraison
  2. #
  3. # Ref :
  4. #  Date: 1 Apr 2003 13:08:28 -0000
  5. #  From: magistrat <magistrat@blocus-zone.com>
  6. #  To: bugtraq@securityfocus.com
  7. #  Subject: Css in Xoops module glossary 1.3.x
  8.  
  9. #
  10. # This check will incidentally cover other flaws.
  11.  
  12. if(description)
  13. {
  14.  script_id(11508);
  15.  script_bugtraq_id(7356);
  16.  script_version ("$Revision: 1.8 $");
  17.  
  18.  
  19.  name["english"] = "Xoops XSS";
  20.  
  21.  script_name(english:name["english"]);
  22.  
  23.  desc["english"] = "
  24. The remote host is running the Xoops CGI suite.
  25.  
  26. There is a cross site scripting issue in this suite
  27. which may allow an attacker to steal your users cookies.
  28.  
  29. The flaw lies in the cgi glossaire-aff.php.
  30.  
  31. You are advised to remove this CGI.
  32.  
  33. Solution : None at this time
  34. Risk factor : Medium";
  35.  
  36.  
  37.  
  38.  
  39.  script_description(english:desc["english"]);
  40.  
  41.  summary["english"] = "Checks for Xoops";
  42.  
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_ATTACK);
  46.  
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2003 Renaud Deraison",
  49.         francais:"Ce script est Copyright (C) 2003 Renaud Deraison");
  50.  family["english"] = "CGI abuses";
  51.  family["francais"] = "Abus de CGI";
  52.  script_family(english:family["english"], francais:family["francais"]);
  53.  script_dependencie("find_service.nes", "http_version.nasl", "cross_site_scripting.nasl");
  54.  script_require_ports("Services/www", 80);
  55.  exit(0);
  56. }
  57.  
  58. # The script code starts here
  59.  
  60. include("http_func.inc");
  61. include("http_keepalive.inc");
  62.  
  63. port = get_http_port(default:80);
  64.  
  65. if(!get_port_state(port))exit(0);
  66. if(get_kb_item(string("www/", port, "/generic_xss"))) exit(0);
  67. if(!can_host_php(port:port))exit(0);
  68.  
  69. foreach d ( cgi_dirs() )
  70. {
  71.  req = http_get(item:string(d, "/modules/glossaire/glossaire-aff.php?lettre=<script>foo</script>"), port:port);
  72.  res = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  73.  if( res == NULL ) exit(0);
  74.  if(ereg(pattern:"^HTTP/[0-9]\.[0-9] 200 ", string:res) &&
  75.     egrep(pattern:"<script>foo</script>", string:res)){
  76.      security_warning(port);
  77.     exit(0);
  78.  }
  79. }
  80.